home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 1994 January / ARPL-Jan94-Disc2of2-Partner-Edition.iso / Applications / Technical Publishing / Aldus PageMaker 5.0 / Scripts / Fraction < prev    next >
Encoding:
Text File  |  1993-07-27  |  590 b   |  34 lines  |  [TEXT/ttxt]

  1. -- Aldus Corporation 1993
  2. -- Fraction script
  3.  
  4. -- Selects and reformats the denominator
  5. textselect -word
  6. typeoptions 80,58,33,0
  7.  
  8. --Size and position can be adjusted for better 
  9. -- results with different fonts
  10.  
  11. position subscript
  12. textcursor -char
  13.  
  14. -- Selects and changes normal slash
  15. -- to opt shift 1 fraction slash (Mac only)
  16.  
  17. textselect 0
  18. textenter "/"
  19.  
  20. --Selects and reformats the numerator
  21.  
  22. textcursor -char
  23. textselect -word
  24. typeoptions 80,58,33,0
  25. position superscript
  26.  
  27. --Leaves cursor where you started to resume printing
  28.  
  29. textcursor +word 2
  30. position normal
  31. redraw on
  32.  
  33. -- end of script
  34.